home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 42 / Amiga Format AFCD42 (Issue 126, Aug 1999).iso / -serious- / archivers / xfd / developer / include / c / clib / xfdmaster_protos.h
C/C++ Source or Header  |  1999-05-17  |  1KB  |  45 lines

  1. #ifndef CLIB_XFDMASTER_PROTOS_H
  2. #define CLIB_XFDMASTER_PROTOS_H
  3.  
  4. /*
  5. **    $VER: xfdmaster_protos.h 37.1 (2.3.96)
  6. **
  7. **    C prototypes. For use with 32 bit integers only.
  8. **
  9. **    Copyright © 1994-96 by Georg Hörmann.
  10. **    All Rights Reserved.
  11. */
  12.  
  13. #include <libraries/xfdmaster.h>
  14.  
  15. struct xfdBufferInfo *xfdAllocBufferInfo(void);
  16. void xfdFreeBufferInfo(struct xfdBufferInfo *);
  17. struct xfdSegmentInfo *xfdAllocSegmentInfo(void);
  18. void xfdFreeSegmentInfo(struct xfdSegmentInfo *);
  19. BOOL xfdRecogBuffer(struct xfdBufferInfo *);
  20. BOOL xfdDecrunchBuffer(struct xfdBufferInfo *);
  21. BOOL xfdRecogSegment(struct xfdSegmentInfo *);
  22. BOOL xfdDecrunchSegment(struct xfdSegmentInfo *);
  23. STRPTR xfdGetErrorText(UWORD);
  24. BOOL xfdTestHunkStructure(APTR, ULONG);
  25.  
  26. /* New for V34 */
  27. UWORD xfdTestHunkStructureNew(APTR, ULONG);
  28. UWORD xfdRelocate(APTR, ULONG, ULONG *, UWORD);
  29.  
  30. /* New for V36 */
  31. UWORD xfdTestHunkStructureFlags(APTR, ULONG, UWORD);
  32. UWORD xfdStripHunks(APTR, ULONG, ULONG *, UWORD);
  33. APTR xfdAllocObject(ULONG);
  34. void xfdFreeObject(APTR);
  35. BOOL xfdRecogLinker(struct xfdLinkerInfo *);
  36. BOOL xfdUnlink(struct xfdLinkerInfo *);
  37.  
  38. /* New for V37 */
  39. UWORD xfdScanData(APTR, ULONG, ULONG *,UWORD, struct xfdScanHook *);
  40. void xfdFreeScanList(struct xfdScanNode *);
  41. ULONG xfdObjectType(APTR);
  42. struct xfdScanHook *xfdInitScanHook(BOOL (*)(), APTR);
  43.  
  44. #endif /* CLIB_XFDMASTER_PROTOS_H */
  45.